home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000167_news@columbia.edu_Wed Aug 16 15:17:44 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA21020
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 16 Aug 1995 11:17:53 -0400
  3. Received: by apakabar.cc.columbia.edu id AA23696
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 16 Aug 1995 11:17:48 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: Any experience with international file transfer over noisy lines?
  9. Date: 16 Aug 1995 15:17:44 GMT
  10. Organization: Columbia University
  11. Lines: 35
  12. Message-Id: <40t26o$n4c@apakabar.cc.columbia.edu>
  13. References: <40q4ct$keh@homer.alpha.net>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <40q4ct$keh@homer.alpha.net>,
  18. Bill Masters  <bmasters@execpc.com> wrote:
  19. : Our company is experimenting with file transfer (specifically CAD
  20. : drawings) to a location in India. Unfortunately the lines over there
  21. : seem to be pretty noisy. We either have the line dropped during the call
  22. : or, more frequently (always, so far) we have nad no luck getting , for
  23. : instance, Zmodem to actually successfully transfer, always seems to time
  24. : out, bad CRCs. I figure the noise at that distance is causing this.
  25. : Does anyone have any experience with this? Are there better
  26. : methods/protocols (Kermit?) that can be used?
  27. Try Kermit.  It is designed to work on connections like this.
  28. I'd suggest settings like the following (give these commands to both
  29. Kermit programs): 
  30.  
  31.   set file type binary
  32.   set receive packet-length 80
  33.   set window 20
  34.  
  35. In other words, binary-mode transfer using very short packets and a
  36. large window size.  This should minimize not only the number of
  37. retransmissions caused by noise, but also result in reasonably fast
  38. performance and error-recovery time over a link that has a long
  39. round-trip delay.
  40.  
  41. If this works satisfactorily, gradually increase the packet-length until
  42. the performance begins to take a nosedive.
  43.  
  44. To learn all about Kermit software and documentation, visit our Web
  45. site:
  46.  
  47.   http://www.columbia.edu/kermit/
  48.  
  49. - Frank